Description
Raise one R object to the power of another.
i1 : x = RObject 5
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o1 = 5
o1 : RObject of type integer
|
i2 : y = RObject 2
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o2 = 2
o2 : RObject of type integer
|
i3 : x^y
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o3 = 25
o3 : RObject of type double
|
One of the operands may be a Macaulay2 object. It will be converted to an RObject before the operation is performed.
i4 : x^2
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o4 = 25
o4 : RObject of type double
|
i5 : 5^y
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o5 = 25
o5 : RObject of type double
|